Basic JavaScript

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Basic Javascript</title>
</head>

<body>
<script>
//This is a small Javascript using string
//alert(Hello world)
//This is a script that uses a variable
let myText;
myText="Hello welcome to Christie Lochan webcite";
alert(myText);
</script>
<p>&nbsp;</p>
</body>
</html>